crypto/tls.Config.time (method)
18 uses
crypto/tls (current package)
common.go#L773: key.created = c.time()
common.go#L891: if len(c.autoSessionTicketKeys) > 0 && c.time().Sub(c.autoSessionTicketKeys[0].created) < ticketKeyRotation {
common.go#L901: if len(c.autoSessionTicketKeys) == 0 || c.time().Sub(c.autoSessionTicketKeys[0].created) >= ticketKeyRotation {
common.go#L910: if c.time().Sub(k.created) < ticketKeyLifetime {
common.go#L955: func (c *Config) time() time.Time {
handshake_client.go#L292: if c.config.time().After(serverCert.NotAfter) {
handshake_client.go#L314: if c.config.time().After(session.useBy) {
handshake_client.go#L338: ticketAge := uint32(c.config.time().Sub(session.receivedAt) / time.Millisecond)
handshake_client.go#L819: receivedAt: c.config.time(),
handshake_client.go#L860: CurrentTime: c.config.time(),
handshake_client_tls13.go#L246: ticketAge := uint32(c.config.time().Sub(hs.session.receivedAt) / time.Millisecond)
handshake_client_tls13.go#L670: receivedAt: c.config.time(),
handshake_client_tls13.go#L672: useBy: c.config.time().Add(lifetime),
handshake_server.go#L408: if c.config.time().Sub(createdAt) > maxSessionTicketLifetime {
handshake_server.go#L743: createdAt := uint64(c.config.time().Unix())
handshake_server.go#L816: CurrentTime: c.config.time(),
handshake_server_tls13.go#L265: if c.config.time().Sub(createdAt) > maxSessionTicketLifetime {
handshake_server_tls13.go#L729: createdAt: uint64(c.config.time().Unix()),
The pages are generated with Golds v0.4.9. (GOOS=linux GOARCH=amd64)